@import url("main.css");

.dropdown-container summary {
    padding:10px;
    background-color:rgb(52,110,138);
    color: #cad7ff;
    font-size: large;
    font-weight: 1000;
}

.circle-image {
    width: 30%;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    outline: 8px solid #01094b;
}

.circle-image img {
    object-fit: cover;
}
.profile{
    background-color:#cae1ff;
    padding:10px;
    display:flex;
    gap: 20px;
    align-items: center;
    font-size: large;
    font-weight: 1000;
    color:rgb(52,110,138);
}

.profile h2{
    color:#01094b;
    text-align: center;
}
.circle-image2{
    width: 60%;
    object-fit: cover;
    border-radius: 20%;
    outline: 8px solid rgb(52,110,138);
    display: block;
    margin: auto;
}
.middle{
    background-color: rgb(255, 255, 255);
    padding: 20px;
}
.section-title{
    text-align: center;
    background-color: rgb(52,110,138);
    color: #cad7ff;
    margin-left: -20px;
    margin-right: -20px;
}
.dropdown-box:hover{
    color: #01094b;
    scale: 101%;
    transition: all 0.1s ease-in-out;
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 4%;
  background-color: #f1f1f1;
  position: relative;
  height: 100%;
  overflow: auto;
  display: flex; 
  flex-direction: column; 
  align-items: stretch; 
  align-items: center;
}

.sidebar a {
  display: block;
  color: black;
  padding: 0px;
  text-decoration: none;
}

.sidebar a.active {
  background-color: #1c3d5e;
  color: white;
}

.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

.sidebar sidebarentry{
    width: 80%; 
    text-align: center; 
    font-size: 1em;
}

div.content {
  margin-left: 4%;
  padding: 1px 16px;
  height: 1000px;
}

@media screen and (max-width: 700px) {
  .sidebar {
    width: 4%;
    position: relative;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}
}